home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Delphi Magazine Collection 2001
/
Delphi Magazine Collection 20001 (2001).iso
/
DISKS
/
Issue49
/
Clinic
/
TimeZone.dpr
< prev
next >
Wrap
Text File
|
1999-05-21
|
229b
|
14 lines
program TimeZone;
uses
Forms,
TimeZoneU in 'TimeZoneU.pas' {TimeZoneInfoForm};
{$R *.RES}
begin
Application.Initialize;
Application.CreateForm(TTimeZoneInfoForm, TimeZoneInfoForm);
Application.Run;
end.